home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLOutline.h < prev    next >
Encoding:
Text File  |  1997-07-20  |  379 b   |  21 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __CLOUTLINE_H
  5. #define __CLOUTLINE_H
  6.  
  7. #include "CLLayout.h"
  8.  
  9. class TOutline:
  10.     public TLayoutBranch
  11. {
  12. protected:
  13.     TLayoutLeaf *mContent;
  14.     virtual void BuildChildren();
  15.     virtual void DrawSelf( TDrawSlate* );
  16. public:
  17.     TOutline( TLayoutBranch*, TLayoutLeaf* );
  18.     virtual void CalcMouseMove( Point, RgnHandle );
  19. };
  20.  
  21. #endif